home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue53 / Clinic / QRPrinters.dpr < prev    next >
Encoding:
Text File  |  1999-11-04  |  329 b   |  16 lines

  1. program QRPrinters;
  2.  
  3. uses
  4.   Forms,
  5.   QRPrintersForm in 'QRPrintersForm.pas' {MainForm},
  6.   QRPrintersReport in 'QRPrintersReport.pas' {ReportForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TMainForm, MainForm);
  13.   Application.CreateForm(TReportForm, ReportForm);
  14.   Application.Run;
  15. end.
  16.